3.22 \(\int \frac{(A+B x^2) (b x^2+c x^4)^2}{x^{10}} \, dx\)

Optimal. Leaf size=48 \[ -\frac{A b^2}{5 x^5}-\frac{b (2 A c+b B)}{3 x^3}-\frac{c (A c+2 b B)}{x}+B c^2 x \]

[Out]

-(A*b^2)/(5*x^5) - (b*(b*B + 2*A*c))/(3*x^3) - (c*(2*b*B + A*c))/x + B*c^2*x

________________________________________________________________________________________

Rubi [A]  time = 0.036689, antiderivative size = 48, normalized size of antiderivative = 1., number of steps used = 3, number of rules used = 2, integrand size = 24, \(\frac{\text{number of rules}}{\text{integrand size}}\) = 0.083, Rules used = {1584, 448} \[ -\frac{A b^2}{5 x^5}-\frac{b (2 A c+b B)}{3 x^3}-\frac{c (A c+2 b B)}{x}+B c^2 x \]

Antiderivative was successfully verified.

[In]

Int[((A + B*x^2)*(b*x^2 + c*x^4)^2)/x^10,x]

[Out]

-(A*b^2)/(5*x^5) - (b*(b*B + 2*A*c))/(3*x^3) - (c*(2*b*B + A*c))/x + B*c^2*x

Rule 1584

Int[(u_.)*(x_)^(m_.)*((a_.)*(x_)^(p_.) + (b_.)*(x_)^(q_.))^(n_.), x_Symbol] :> Int[u*x^(m + n*p)*(a + b*x^(q -
 p))^n, x] /; FreeQ[{a, b, m, p, q}, x] && IntegerQ[n] && PosQ[q - p]

Rule 448

Int[((e_.)*(x_))^(m_.)*((a_) + (b_.)*(x_)^(n_))^(p_.)*((c_) + (d_.)*(x_)^(n_))^(q_.), x_Symbol] :> Int[ExpandI
ntegrand[(e*x)^m*(a + b*x^n)^p*(c + d*x^n)^q, x], x] /; FreeQ[{a, b, c, d, e, m, n}, x] && NeQ[b*c - a*d, 0] &
& IGtQ[p, 0] && IGtQ[q, 0]

Rubi steps

\begin{align*} \int \frac{\left (A+B x^2\right ) \left (b x^2+c x^4\right )^2}{x^{10}} \, dx &=\int \frac{\left (A+B x^2\right ) \left (b+c x^2\right )^2}{x^6} \, dx\\ &=\int \left (B c^2+\frac{A b^2}{x^6}+\frac{b (b B+2 A c)}{x^4}+\frac{c (2 b B+A c)}{x^2}\right ) \, dx\\ &=-\frac{A b^2}{5 x^5}-\frac{b (b B+2 A c)}{3 x^3}-\frac{c (2 b B+A c)}{x}+B c^2 x\\ \end{align*}

Mathematica [A]  time = 0.0199065, size = 48, normalized size = 1. \[ -\frac{A b^2}{5 x^5}-\frac{b (2 A c+b B)}{3 x^3}-\frac{c (A c+2 b B)}{x}+B c^2 x \]

Antiderivative was successfully verified.

[In]

Integrate[((A + B*x^2)*(b*x^2 + c*x^4)^2)/x^10,x]

[Out]

-(A*b^2)/(5*x^5) - (b*(b*B + 2*A*c))/(3*x^3) - (c*(2*b*B + A*c))/x + B*c^2*x

________________________________________________________________________________________

Maple [A]  time = 0.004, size = 45, normalized size = 0.9 \begin{align*} -{\frac{A{b}^{2}}{5\,{x}^{5}}}-{\frac{b \left ( 2\,Ac+Bb \right ) }{3\,{x}^{3}}}-{\frac{c \left ( Ac+2\,Bb \right ) }{x}}+B{c}^{2}x \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

int((B*x^2+A)*(c*x^4+b*x^2)^2/x^10,x)

[Out]

-1/5*A*b^2/x^5-1/3*b*(2*A*c+B*b)/x^3-c*(A*c+2*B*b)/x+B*c^2*x

________________________________________________________________________________________

Maxima [A]  time = 1.16067, size = 69, normalized size = 1.44 \begin{align*} B c^{2} x - \frac{15 \,{\left (2 \, B b c + A c^{2}\right )} x^{4} + 3 \, A b^{2} + 5 \,{\left (B b^{2} + 2 \, A b c\right )} x^{2}}{15 \, x^{5}} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate((B*x^2+A)*(c*x^4+b*x^2)^2/x^10,x, algorithm="maxima")

[Out]

B*c^2*x - 1/15*(15*(2*B*b*c + A*c^2)*x^4 + 3*A*b^2 + 5*(B*b^2 + 2*A*b*c)*x^2)/x^5

________________________________________________________________________________________

Fricas [A]  time = 0.445129, size = 119, normalized size = 2.48 \begin{align*} \frac{15 \, B c^{2} x^{6} - 15 \,{\left (2 \, B b c + A c^{2}\right )} x^{4} - 3 \, A b^{2} - 5 \,{\left (B b^{2} + 2 \, A b c\right )} x^{2}}{15 \, x^{5}} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate((B*x^2+A)*(c*x^4+b*x^2)^2/x^10,x, algorithm="fricas")

[Out]

1/15*(15*B*c^2*x^6 - 15*(2*B*b*c + A*c^2)*x^4 - 3*A*b^2 - 5*(B*b^2 + 2*A*b*c)*x^2)/x^5

________________________________________________________________________________________

Sympy [A]  time = 0.733644, size = 51, normalized size = 1.06 \begin{align*} B c^{2} x - \frac{3 A b^{2} + x^{4} \left (15 A c^{2} + 30 B b c\right ) + x^{2} \left (10 A b c + 5 B b^{2}\right )}{15 x^{5}} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate((B*x**2+A)*(c*x**4+b*x**2)**2/x**10,x)

[Out]

B*c**2*x - (3*A*b**2 + x**4*(15*A*c**2 + 30*B*b*c) + x**2*(10*A*b*c + 5*B*b**2))/(15*x**5)

________________________________________________________________________________________

Giac [A]  time = 1.24291, size = 72, normalized size = 1.5 \begin{align*} B c^{2} x - \frac{30 \, B b c x^{4} + 15 \, A c^{2} x^{4} + 5 \, B b^{2} x^{2} + 10 \, A b c x^{2} + 3 \, A b^{2}}{15 \, x^{5}} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate((B*x^2+A)*(c*x^4+b*x^2)^2/x^10,x, algorithm="giac")

[Out]

B*c^2*x - 1/15*(30*B*b*c*x^4 + 15*A*c^2*x^4 + 5*B*b^2*x^2 + 10*A*b*c*x^2 + 3*A*b^2)/x^5